home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 December / Chip_1999-12_cd.bin / zkuste / MacOS / FILES / MARI.SIT / Mariner 4.0 folder / MarinerÆ 4.0.rsrc / STR#_557.txt < prev    next >
Text File  |  1999-10-25  |  1KB  |  28 lines

  1. VAR(n1,n2,n3...)
  2. Returns the sample variance of the numeric values in a list of arguments.
  3.  
  4. STDEV(n1,n2,n3...)
  5. Returns sample standard deviation of the numeric values in a list of arguments. The formula used is sqrt(VARIANCE(list)).
  6.  
  7. RANK(n,range,ascending)
  8. Returns the position (sorted order) of n in a list of numbers. The list of numbers must be specified using a range. Ascending is a logical value specifying ascending or descending order. If omitted it assumed to be 0 (false).
  9.  
  10. MIN(n1,n2,n3...)
  11. Returns the smallest numeric value in a list of arguments.
  12.  
  13. MAX(n1,n2,n3...)
  14. Returns the largest numeric value in a list of arguments.
  15.  
  16. GAMMALN(number)
  17. Returns the natural logarithm of the gamma function.
  18.  
  19. COUNTA(n1,n2,n3...)
  20. Returns the count of all values (numeric or text) in a list of arguments. Empty cells are ignored.
  21.  
  22. COUNT(n1,n2,n3...)
  23. Returns the count of numeric values in a list of arguments. Empty and text cells will be ignored, text that can be converted to numeric values will be used.
  24.  
  25. AVERAGE(n1,n2,n3...)
  26. Returns the average of the numeric values in a list of arguments. Empty cells and text will be ignored. Text that can be converted to numeric values will be used.
  27.  
  28.